home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Python / protos / marshal_protos1.h < prev    next >
Text File  |  1996-12-15  |  250b  |  9 lines

  1.  
  2. /* marshal.c part 1 */
  3. static void w_more ( int c , WFILE *p );
  4. static void w_string ( char *s , int n , WFILE *p );
  5. static void w_short ( int x , WFILE *p );
  6. static void w_long ( long x , WFILE *p );
  7. static void w_object ( object *v , WFILE *p );
  8.  
  9.